home *** CD-ROM | disk | FTP | other *** search
/ PC World 2007 December / PCWorld_2007-12_cd.bin / domacnost a kancelar / autoit / autoit-v3-setup.exe / Examples / Helpfile / _IEPropertySet.au3 < prev    next >
Text File  |  2007-09-08  |  580b  |  12 lines

  1. ; *******************************************************
  2. ; Example 1 - Open a browser with the basic example, check to see if the
  3. ;                addressbar is visible, if it is not turn it on. Then change
  4. ;                the text displayed in the statusbar
  5. ; *******************************************************
  6. ;
  7. #include <IE.au3>
  8. $oIE = _IE_Example ("basic")
  9. If Not _IEPropertyGet ($oIE, "statusbar") Then _IEPropertySet ($oIE, "statusbar", True)
  10. _IEPropertySet ($oIE, "statustext", "Look What I can Do")
  11. Sleep(1000)
  12. _IEPropertySet ($oIE, "statustext", "I can change the status text")